33c2fcf538bf6fb57c611c2c5ffce284fe27598c,src/test/java/io/nats/stan/SubscriptionImplTest.java,SubscriptionImplTest,testUnsubscribeInboxWarning,#,185

Before Change


    public void testUnsubscribeInboxWarning() throws IOException, TimeoutException {
        ConnectionImpl conn = null;
        try {
            conn = newMockedConnection();
        } catch (IOException | TimeoutException e) {
            /* NOOP */
        }

After Change


    public void testUnsubscribeInboxWarning() throws IOException, TimeoutException {
        ConnectionImpl conn = null;
        try {
            conn = (ConnectionImpl) newMockedConnection();
        } catch (IOException | TimeoutException e) {
            /* NOOP */
        }